List Recordings
This API list recordings for a JioMeet meeting using the jiomeetId, roomPIN and the historyId (historyId is obtained through the start/stop recording APIs)
Header Parameters
The content type should be application/json
You need an app created on the JioMeet Platform and using the app credentials you can create a JWT to access this API. The JWT should have an issuer and the key "app" with the app id generated from the Plaform.
Request Body
The 10 digit unique ID of the meeting
Meeting secret that secures the meeting from unwanted access
Unique identifier of the recording. This should be used to fetch the recording once it has completed
- 200
- 400
- 401
- 412
Success
Schema
An array of objects containing the recording download URL. Ensure you call the download URL with the proper Authorization header to download the recording
{
"callRecordings": [
null
]
}
Example recording response
{
"callRecordings": [
{
"recorderId": "Etglyx",
"url": "https://example.jio.com/api/shorturl/getVideo?hash=dFnCz8qIO10215123",
"customName": "Recording(1)_10:24__10:27",
"duration": null,
"dateCreated": "2022-03-10T04:54:50.254Z",
"startTime": "2022-03-10T04:54:55.247Z",
"endTime": "2022-03-10T04:57:22.785Z",
"fileSize": 4255450
}
]
}
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string"
}
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string"
}
Schema
Status Code of the API
The error code of the API
The errors array which includes objects with a "property" and "message" properties describing the error
{
"customCode": 0,
"message": "string"
}